google.golang.org/grpc.ClientConn.ctx (field)
11 uses
google.golang.org/grpc (current package)
balancer_wrapper.go#L85: ctx, cancel := context.WithCancel(cc.ctx)
clientconn.go#L194: cc.ctx, cc.cancel = context.WithCancel(context.Background())
clientconn.go#L250: cc.csMgr = newConnectivityStateManager(cc.ctx, cc.channelz)
clientconn.go#L670: ctx context.Context // Initialized using the background context at dial time.
clientconn.go#L771: case <-cc.ctx.Done():
clientconn.go#L918: ac.ctx, ac.cancel = context.WithCancel(cc.ctx)
clientconn.go#L1059: ac.ctx, ac.cancel = context.WithCancel(ac.cc.ctx)
clientconn.go#L1527: newTr, err := transport.NewHTTP2Client(connectCtx, ac.cc.ctx, addr, copts, onClose)
resolver_wrapper.go#L56: ctx, cancel := context.WithCancel(cc.ctx)
stream.go#L428: case <-cc.ctx.Done():
stream.go#L443: if err := cs.cc.ctx.Err(); err != nil {